home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 17.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  584b  |  31 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. main()
  9. {
  10.     int    a, b, c;
  11.  
  12.     a=1; b=2; c=8;
  13.  
  14.     a= c - (a+b) ; /* a is 5 */
  15.     printf("a is %d\n",a);
  16.  
  17.     b = a * (c/b) ; /* b is 20 */
  18.     printf("b is %d\n",b);
  19.  
  20.     b = 9%3 ; /* b is 0 */
  21.     printf("b is %d\n",b);
  22.  
  23.     c = 25%7 ; /* c is 4 */
  24.     printf("c is %d\n",c);
  25.  
  26.     b=1;
  27.     c = a * c - b; /* c is 10 - remember the previous operations */
  28.     printf("c is %d\n",c);
  29.  
  30. }
  31.